home *** CD-ROM | disk | FTP | other *** search
- package mx.events
- {
- import flash.events.Event;
- import mx.core.mx_internal;
-
- use namespace mx_internal;
-
- public dynamic class DynamicEvent extends Event
- {
- mx_internal static const VERSION:String = "2.0.1.0";
-
- public function DynamicEvent(param1:String, param2:Boolean = false, param3:Boolean = false)
- {
- super(param1,param2,param3);
- }
-
- override public function clone() : Event
- {
- return new DynamicEvent(type,bubbles,cancelable);
- }
- }
- }
-
-